Skip to content

chore(deps): update embarkstudios/cargo-deny-action action to v1.6.3#259

Merged
lfrancke merged 1 commit into
mainfrom
renovate/embarkstudios-cargo-deny-action-1.x
May 14, 2024
Merged

chore(deps): update embarkstudios/cargo-deny-action action to v1.6.3#259
lfrancke merged 1 commit into
mainfrom
renovate/embarkstudios-cargo-deny-action-1.x

Conversation

@stackable-bot
Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
EmbarkStudios/cargo-deny-action action minor v1.5.4 -> v1.6.3

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

EmbarkStudios/cargo-deny-action (EmbarkStudios/cargo-deny-action)

v1.6.3: Release 1.6.3 - cargo-deny 0.14.21

Compare Source

Fixed
  • PR#643 resolved #​629 by making the hosted git (github, gitlab, bitbucket) org/user name comparison case-insensitive. Thanks @​pmnlla!
  • PR#649 fixed an issue where depending on the same crate multiple times by using different cfg()/triple targets could cause features to be resolved incorrectly and thus crates to be not pulled into the graph used for checking.

[0.14.20] - 2024-03-23

Fixed
  • PR#642 resolved #​641 by pinning gix-transport (and its unique dependencies) to 0.41.2 as a workaround for cargo install not using the lockfile. See this issue for more information.

v1.6.2: Release 1.6.2 - cargo-deny 0.14.19

Compare Source

Changed
  • PR#639 updated tame-index to avoid an error if you don't used --locked.

[0.14.18] - 2024-03-21

Fixed

[0.14.17] - 2024-03-17

Changed
  • PR#631 improved the diagnostic for when the yank check fails due to some issue with retrieving or reading the index information.
  • PR#633 updated gix -> 0.60.

v1.6.1

Compare Source

Fixed
  • PR#626 resolved #​625 by explicitly checking that a license identified as Pixar was actually (probably) the Pixar license, instead of a normal Apache-2.0 license.

v1.6.0

Compare Source

action changes

  • Color output is now always enabled so that colors show up in the action output.

0.14.15

Added
  • PR#618 added metadata notes to diagnostics when a license is rejected, as well as removing span information for accepted licenses unless the log level is info or higher to make the diagnostic clearer by default.

0.14.14

Fixed
  • PR#617 resolved #​576 by updating the SPDX license list to 3.23.

0.14.13

Fixed
  • PR#615 fixed an issue introduced in PR#605 where the various bans diagnostic codes could not have their lint level changed via the CLI. It also introduced the deprecated diagnostic code.

0.14.12

Changed
  • PR#605 did a major refactor of configuration, both how it is deserialized and changing (hopefully improving) many options.
  • PR#605 moved targets, exclude, all-features, features, no-default-features, and exclude into the [graph] table.
  • PR#605 moved feature-depth into the [output] table.
Added
  • PR#613 added support for basic shell expansion to advisories.db-path, which expands support beyond just ~ to include environment variable expansion.
Fixed
  • PR#601 resolved #​600 by outputting the correct spans when a license was both allowed and denied.
  • PR#605 resolved #​264 be replacing toml and serde with toml-span.
  • PR#605 resolved #​539 by simplifying the very common name = "<crate_name>", version = "<requirements>" used to target specific crates into either a plain package spec string or the simpler crate = "<package spec>".
  • PR#605 resolved #​578 by adding a reason = "<reason>" field to many fields within the configuration that are provided in diagnostics. [bans.deny] also has an additional use-instead = "<url/crate_name>". PR#610 did this for the advisories.ignore field.
  • PR#605 resolved #​579 by allowing yanked crates to be ignored by specifying a PackageSpec in the [advisories.ignore] array.
Deprecated
  • PR#606 and PR#611 together deprecated several fields listed below. See PR#611 for how to change your config to opt-in to the new behavior that will become the default when the deprecated fields are removed in a future minor version.
    • [advisories]
      • vulnerability
      • unmaintained
      • unsound
      • notice
      • severity-threshold
    • [licenses]
      • unlicensed
      • allow-osi-fsf-free
      • copyleft
      • default
      • deny

v1.5.15: Release 1.5.15 - cargo-deny 0.14.11

Compare Source

Fixed

v1.5.14: Release 1.5.14 - cargo-deny 0.14.11

Compare Source

Added
  • Added the manifest-path key as a shorthand for doing arguments: --manifest-path <path>

v1.5.13: Release 1.5.13 - cargo-deny 0.14.11

Compare Source

Fixed

v1.5.12: Release 1.5.12 - cargo-deny 0.14.10

Compare Source

Fixed

v1.5.11: Release 1.5.11 - cargo-deny 0.14.9

Compare Source

Fixed

v1.5.10: Release 1.5.10 - cargo-deny 0.14.8

Compare Source

Fixed

v1.5.9: Release 1.5.9 - cargo-deny 0.14.7

Compare Source

Fixed

v1.5.8: Release 1.5.8 - cargo-deny 0.14.6

Compare Source

Fixed
  • PR#590 updated krates to fix an issue with crates that directly have a dependency on 2 or more versions of the same crate.
Added
  • PR#590 resolved #​405 by emitting warnings when a wrapper crate for a banned crate does not have a dependency on that crate.
Changed
  • PR#591 updated gix and tame-index.

v1.5.7: Release 1.5.7 - cargo-deny 0.14.5

Compare Source

Fixed
  • PR#588 resolved an issue introduced in [0.14.4] where features that reference dev-only dependencies in non-workspace crates would cause a panic.

v1.5.6: Release 1.5.6 - cargo-deny 0.14.4

Compare Source

Fixed

v1.5.5: Release 1.5.5 - cargo-deny 0.14.2

Compare Source

Added
Changed
  • PR#557 introduced changes to how dev-dependencies are handled. By default, crates that are only used as dev-dependencies (ie, there are no normal nor build dependency edges linking them to other crates) will no longer be considered when checking for multiple-versions violations. This can be re-enabled via the bans.multiple-versions-include-dev config field. Additionally, licenses are no longer checked for dev-dependencies, but can be re-enabled via licenses.include-dev the config field. dev-dependencies can also be completely disabled altogether, but this applies to all checks, including advisories and sources, so is not enabled by default. This behavior can be enabled by using the exclude-dev field, or the --exclude-dev command line flag. This change resolved #​322, #​329, #​413 and #​497.
Fixed
  • PR#549 fixed #​548 by correctly locating cargo registry indices from an git ssh url.
  • PR#549 fixed #​552 by correctly handling signal interrupts and removing the advisory-dbs lock file.
  • PR#549 fixed #​553 by adding the native-certs feature flag that can enable the OS native certificate store.
Deprecated

Configuration

📅 Schedule: Branch creation - "" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

| datasource  | package                         | from   | to     |
| ----------- | ------------------------------- | ------ | ------ |
| github-tags | EmbarkStudios/cargo-deny-action | v1.5.4 | v1.6.3 |
@stackable-bot stackable-bot added the dependencies Pull requests that update a dependency file label May 14, 2024
@stackable-bot stackable-bot requested a review from a team May 14, 2024 09:07
@lfrancke lfrancke added this pull request to the merge queue May 14, 2024
Merged via the queue into main with commit 213f4f6 May 14, 2024
@lfrancke lfrancke deleted the renovate/embarkstudios-cargo-deny-action-1.x branch May 14, 2024 09:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants